home *** CD-ROM | disk | FTP | other *** search
/ Enciclopedia Del Perro / Enciclopedia Del Perro.iso / info31 / socks.tx_ / socks.tx
Text File  |  1995-04-02  |  2KB  |  48 lines

  1. #--------------------------------------------------------------------
  2. # Copyright (C) 1986-1995 by FTP Software, Inc., all rights reserved.
  3. #
  4. # File: SOCKS.CNF
  5. #
  6. # Description:
  7. #  This is a sample configuration file for SOCKS.DLL.  The format
  8. #  of this file is compatible with the SOCKS.CNF format used by 
  9. #  Version 4 Socks clients for Unix.
  10. #
  11. # Syntax:
  12. #  Lines beginning with # are comments
  13. #  'direct' defines destinations that should use direct connections
  14. #  'sockd' defines when to use a proxy connection
  15. #
  16. # Remarks:
  17. #  Those familiar with UNIX Socks clients will notice that the 'deny'
  18. #  configuration option is not supported.  PC's don't have user names
  19. #  or security like a Unix system does, so it does not make sense to
  20. #  restrict yourself when you have full access to the config file.
  21. #  Any 'deny' lines will be ignored.
  22. #
  23. #  Lines are interpretted sequentially until a match for the current
  24. #  connection is found.  Therefore, the order of the lines is extremely
  25. #  important.  Case is also important.
  26. #----------------------------------------------------------------------
  27. #
  28. # The following line assures that network requests to the host itself 
  29. # are processed locally rather than being diverted through SOCKS server.
  30. direct  127.0.0.1 255.255.255.255
  31. #
  32. # The following line would define all hosts in my local subnet as direct.
  33. # My host's IP address is 127.128.50.27 (class c, with 8 bits of subnet).
  34. direct  128.127.50.0 255.255.255.0
  35. #
  36. # The following line would define direct connections to any address
  37. # starting with 111.222.
  38. direct  111.222.0.0 255.255.0.0
  39. #
  40. # The following line says that everything that hasn't been matched
  41. # by the lines above should be connected throught the default proxy
  42. # SOCKS server (defined by the "socks-server=<hostname>" entry in the 
  43. # [pctcp socks] section of your PCTCP.INI configuration file.  You can
  44. # have more than one entry for default socks servers (see configuration
  45. # documentation for more information).
  46. sockd   0.0.0.0 0.0.0.0
  47.  
  48.